home *** CD-ROM | disk | FTP | other *** search
Wrap
/*----------------------------------------------------------------------* * * B C K U P . R C - Dipl. Ing. Bernd Herd * Niederstr. 36 * 64285 Darmstadt * Germany * Tel./Fax: 06151 / 664717 * (C) 1994-95 Bernd Herd * * WLHA.DLL Dynamic Link Library for Microsoft Windows 3.1 * makes it possible to extract Files from and add Files to LHA-Archives * without using LHA.EXE * * This is a Demonstration Program to show you, how a simple * Backup-Solution may work with WLHA.DLL. It is not intended to * be a professional Backup Program. * * You may want to Copy the RC-Resource Files via the Dos-Command- * line BRC -R BCKUP.RC before Compiling this Pascal-Program in the IDE. * ---------------------------------------------------------------*/ #include "bckupr.pas" APP_ICON ICON "MDICHILD.ICO" DEMO DIALOG 18, 18, 275, 170 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "WLHA Demo 1.0" BEGIN CONTROL "&Ok", IDOK, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 10, 152, 30, 14 CONTROL "&Cancel", IDCANCEL, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 54, 152, 30, 14 CONTROL "&Add", IDADD, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 96, 152, 30, 14 END ABORT DIALOG 60, 55, 138, 61 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE CAPTION "Running LHA Compression" BEGIN CONTROL "LHA-Compressor is running. Press Cancel if you don't want to wait any longer....", -1, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE | WS_GROUP, 9, 6, 122, 41 CONTROL "&Cancel", IDCANCEL, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 48, 36, 41, 18 END